home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- * $Id: config.h,v 1.2 1998/09/13 00:21:18 emanuel Exp $
- * Copyright (C) 1998 Emanuel Borsboom <emanuel@zerius.com>
- * Permission is granted to make any use of this code subject to the condition
- * that all copies contain this notice and an indication of what has been
- * changed.
- *****************************************************************************/
-
- #ifndef CONFIG_H_INCLUDED
- #define CONFIG_H_INCLUDED
-
- typedef int BOOL;
- //#define FALSE 0 //-- EJT change Nov. 2000
- //#define TRUE 1 //-- EJT change Nov. 2000
-
- typedef unsigned long U32;
- typedef signed long S32;
- typedef unsigned short U16;
- typedef signed short S16;
- typedef unsigned char U8;
- typedef signed char S8;
-
- typedef S32 INT;
- typedef S16 SHORT;
- typedef S8 BYTE;
- typedef U32 UINT;
- typedef U16 USHORT;
- typedef U8 UBYTE;
-
- typedef double REAL;
-
- #endif /* CONFIG_H_INCLUDED */
-
-